home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / bcopy.arc / BCOPY.DOC < prev    next >
Text File  |  1988-12-15  |  2KB  |  44 lines

  1.  
  2. BCOPY.COM
  3. Command
  4.  
  5. Douglas Boling
  6. 1989 No. 1 (Utilities)
  7.  
  8.  
  9. Purpose:    A memory-resident utility that copies files in the background so
  10. the user does not have to wait until the copying is completed before continuing
  11. his work.
  12.     
  13. Format:    [d:][path]BCOPY [source  [target]] [/X][/U]
  14.     
  15. Remarks:    The source and target parameters have the same usage in BCOPY as
  16. in the DOS COPY command, save that if the source is a directory, BCOPY will not
  17. automatically assume an implicit \*.*.  DOS wildcard characters (* and ?) are
  18. supported, however, and a source filename need not be repeated as part of the
  19. target filespec unless the name is to be changed.  If initially run with the /X
  20. command line switch, BCOPY will use one page of Expanded memory for its data
  21. buffer, thus saving 4 KB of conventional RAM.  Run with the /U switch, BCOPY
  22. will uninstall itself from memory, if possible.  BCOPY will always complete all
  23. copying tasks in its queue before deinstallation.
  24.  
  25.     BCOPY does not support the DOS COPY /A and /B switches:  it makes
  26. straight binary file copies and does not stop at a Ctrl-Z end-of-file marker. 
  27. Nor does BCOPY allow using the plus (+) sign to combine multiple source files
  28. into a single copy.  Note:  unlike the DOS COPY command, BCOPY does not return a
  29. Target Disk Full error message, so care must be exercised to ensure that
  30. adequate storage space is available.  Since the principal use of BCOPY is to
  31. load files to a RAMdisk during the execution of an AUTOEXEC or other batch file,
  32. however, this should not present a problem in normal use.
  33.  
  34.     Available for downloading from PC MagNet (see the BCOPY by Modem
  35. sidebar), BCOPY.COM is already compiled and ready to run.  BCOPY.BAS will
  36. automatically create BCOPY.COM when run once in BASIC.  To create BCOPY.COM from
  37. the BCOPY.ASM source code requires use of a macro assembler (IBM or Microsoft,
  38. Version 2 or later) and the following commands:
  39.  
  40.     MASM BCOPY;
  41.     LINK BCOPY;
  42.     EXE2BIN BCOPY BCOPY.COM;
  43.  
  44.